From: Andreas Schwab Date: Sat, 13 Jul 2002 21:40:05 +0000 (+0000) Subject: (mail-abbrev-make-syntax-table): Check the X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~56246 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6946ae5b110a82d238c6546f29fec986f32d071b;p=emacs.git (mail-abbrev-make-syntax-table): Check the inherited table entry. --- diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index ff83ba49a25..64ca66ad452 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el @@ -413,6 +413,9 @@ of a mail alias. The value is set up, buffer-local, when first needed.") (w (aref (standard-syntax-table) ?w))) (map-char-table (function (lambda (key value) + (if (null value) + ;; Fetch the inherited value + (setq value (aref tab key))) (if (equal value _) (set-char-table-range tab key w)))) tab)